home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20030409-20031118 / 000179_KentMartin@TexasHealth.org_Thu Jun 19 16:38:41 EDT 2003.msg < prev    next >
Text File  |  2020-01-01  |  2KB  |  44 lines

  1. Article: 14408 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!panix!newsfeed!news.maxwell.syr.edu!newsfeed.stanford.edu!postnews1.google.com!not-for-mail
  3. From: KentMartin@TexasHealth.org (Kent W. Martin)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Access to all lines of an FTP multi-line reply
  6. Date: 19 Jun 2003 13:32:49 -0700
  7. Organization: http://groups.google.com/
  8. Lines: 26
  9. Message-ID: <b97068c6.0306191232.37ef0ff0@posting.google.com>
  10. NNTP-Posting-Host: 216.61.195.1
  11. Content-Type: text/plain; charset=ISO-8859-1
  12. Content-Transfer-Encoding: 8bit
  13. X-Trace: posting.google.com 1056054770 4849 127.0.0.1 (19 Jun 2003 20:32:50 GMT)
  14. X-Complaints-To: groups-abuse@google.com
  15. NNTP-Posting-Date: 19 Jun 2003 20:32:50 GMT
  16. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:14408
  17.  
  18. I'm using the FTP client in Kermit 95 2.1.3 on Windows XP.  The FTP
  19. server to which I'm connected is issuing multi-line replies:
  20.  
  21.  PUT T1H4CPPZ (text) (32760092 bytes)---> PASV
  22. 227 Entering Passive Mode (167,99,56,239,135,132).
  23. ---> STOR T1H4CPPZ
  24. 150 Sending file to member T1H4CPPZ in file T1H4CPPZ in library
  25. DOWNLOADA.
  26. 426-Records written to file T1H4CPPZ in library DOWNLOADA have been
  27. truncated. Data in file may not be valid.
  28. 426 Data transfer ended.
  29. : MESSAGE: Data transfer ended.
  30.  
  31. According to section 4.2 (FTP replies) at
  32. ftp://ftp.isi.edu/in-notes/rfc959.txt the format of this multi-line
  33. reply is correct.
  34.  
  35. In K95 \v(ftp_code) is correctly getting set to 426.  However,
  36. \v(ftp_message) is getting set to "Data transfer ended.".  How can I
  37. access the "Records written to file yadda, yadda, yadda" part of the
  38. message?
  39.  
  40. BTW, I know why the server is issuing the message about the file
  41. having been truncated.  That's not what I'm trying to fix.
  42.  
  43. Kent
  44.